我正在安装Mysql -工作台,以便将Postgres数据库迁移到Mysql。
操作系统版本:红帽企业Linux服务器第7.2版(Maipo)
我正在安装mysql-工作台,并遵循以下说明。
https://dev.mysql.com/doc/workbench/en/wb-installing-linux.html
我有下面的回购。
repo id repo name status
cloudera-manager Cloudera Manager, Version 5.7.5 7
mysql-connectors-community/x86_64 MySQL Connectors Community 30
mysql-tools-community/x86_64 MySQL Tools Community 40
mysql57-community/x86_64 MySQL 5.7 Community Server 164
rhui-REGION-client-config-server-7/x86_64 Red Hat Update Infrastructure 2.0 Client Configuration Server 7 6
rhui-REGION-rhel-server-releases/7Server/x86_64 Red Hat Enterprise Linux Server 7 (RPMs) 13,573
rhui-REGION-rhel-server-rh-common/7Server/x86_64 Red Hat Enterprise Linux Server 7 RH Common (RPMs) 209
repolist: 14,029当我尝试命令
sudo yum -y install mysql-workbench-community我得到了这些错误。
Error: Package: mysql-workbench-community-6.3.8-1.el7.x86_64 (mysql-tools-community)
Requires: proj
Error: Package: mysql-workbench-community-6.3.8-1.el7.x86_64 (mysql-tools-community)
Requires: tinyxml
Error: Package: mysql-workbench-community-6.3.8-1.el7.x86_64 (mysql-tools-community)
Requires: python-paramiko >= 1.15.1我的问题是如何找到这些依赖包的回购- proj,tinyxml,paramiko?
发布于 2016-12-19 01:28:07
您需要安装其他软件包:
sudo yum install epel-release
sudo yum install proj
sudo yum install tinyxml
sudo yum install libzip如果你在回购方面有问题
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo yum install epel-release-7.noarch.rpm比
sudo yum -y install mysql-workbench-community

发布于 2018-05-31 03:05:28
要求:paramiko >= 1.15.1
然后安装下载 python-paramiko-1.15.1-1.sdl7.noarch.rpm:
rpm -ivh python-paramiko-1.15.1-1.sdl7.noarch.rpm如果在安装python-paramiko时得到:
错误:依赖项失败:python-paramiko-1.15.1-1.sdl7.noarcha需要 python。
yum install -y python-ecdsa然后可以安装mysql-workbench:
yum -y install mysql-workbench-community发布于 2023-02-02 15:31:00
您需要在下面安装依赖项
sudo dnf install -y https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/37/Everything/x86_64/os/Packages/p/proj-data-9.0.1-1.fc37.noarch.rpm
sudo dnf install -y https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/37/Everything/x86_64/os/Packages/p/proj-9.0.1-1.fc37.x86_64.rpm
sudo dnf install mysql-workbench-community-8.0.32-1.fc37.x86_64.rpm问候
https://dba.stackexchange.com/questions/158509
复制相似问题