Python之Web开发初学者教程—ubuntu中配置python3
ubuntu 默认安装了python 3.6.9
安装后默认不识别python命令,需要在bin下创建创建链接
ln -s /usr/bin/python3.6 /usr/bin/python
同理:pip3 符号链接为pip
ln -s /usr/bin/pip3 /usr/bin/pip
安装pyinstaller
如果python的环境已经配置好了,一行代码便可实现pyinstaller的安装。在cmd中输入(pip3 是python3安装)
pip3 install pyinstaller -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
安装报错,还是采用运行安装包来安装pyinstaller
先下载Python软件包.iso文件,下载地址:https://download.csdn.net/download/zhengyuanyehit/88894034
点击【确定】
会安装到/usr/local/lib/python
版本号
/dist-packages
路径下
安装pycharm
测试
打开pycharm,
打开/usr/tmp/hello.py
文章来源:https://www.toymoban.com/news/detail-840672.html
文章来源地址https://www.toymoban.com/news/detail-840672.html
到了这里,关于Python之Web开发初学者教程—ubuntu中配置python3的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!