|-转 运行python -V 报错 -bash: python: command not found
一、问题
在服务器上安装了python后,使用python命令时提示:
bash: python: command not found
二、原因
软链接没弄。
三、解决方法
1、查看服务器python版本,一般而言在/usr/bin目录下,命令如下:
find /usr/bin-iname 'python*'
2、根据python版本建立软链接,命令如下:(我的是python3.8,根据版本换成自己的)
ln -s /usr/bin/python3.9 /usr/bin/python
3、输入python验证一下即可。
python -V
4、出现了问题:...
浏览更多内容请先登录。
立即注册
更新于:2022-05-27 07:33:54
|--原 运行 pip install 命令报错-bash: pip: command not found 解决方法
操作系统Centos Stream 8,其他操作系统类同
1,下载
Python版本3.7及以上的用
wget https://bootstrap.pypa.io/get-pip.py
Python版本3.6的用
wget https://bootstrap.pypa.io/pip/3.6/get-pip.py
2,安装 ...
浏览更多内容请先登录。
立即注册
更新于:2022-05-28 10:37:40
相关内容
python代码整理(2022年4月-2024年3月)
Python和PHP获取百度url跳转的真实地址代码(2022年4月实测有效)
Pip/python-如何查看已安装的包有哪些版本?如何查看某个包存在哪些版本?pip...
用undetected_chromedriver代替selenium解决浏览器打不开网页
sublime text下 Python 问题:TabError: inconsistent use of tabs and s...
XAMPP的mysql启动失败:Plugin 'FEEDBACK' is disabled.
xammp 启动mysql报错Error: MySQL shutdown unexpectedly. This may be d...
Yii2 报错代码整理
Yii2 HeadersAlreadySentException 报错
Yii2报错 Object configuration must be an array containing a "class" o...
CentOS 8 结束生命周期,切换到 CentOS-Vault 源教程(vault源不好用,...
Python的扩展和模块安装时遇到的问题整理
windows环境下python3安装Crypto扩展
pip install 报错 ERROR: Can not execute setup.py since setuptools i...
运行python -V 报错 -bash: python: command not found
protobuf requires Python ‘>=3.7‘ but the running Python is 3.6.5的解...
推荐内容