conda
jsx
conda create --name py35 python=3.5 创建
conda activate py35 //激活
conda deactivate py35//退出
conda remove --name py35 --all//移除
conda info -e //已安装环境
/miniconda3/bin/python base位置
/etc/python /usr/lib/python3.5m
/usr/bin/python2.7 mininet位置
python2到python3变化
1.AttributeError: 'dict' object has no attribute 'has_key':
jsx
if not my_dict.has_key(my_key):
改法1 if my_key not in my_dict:
改法2 if my_dict.get(my_key) is not None:
2.TypeError: 'float' object cannot be interpreted as an integer
原因:在python2,'/' 只留下了整数部分,去掉了小数,是int型。而在 python3里,'/' 的结果是真正意义上的除法,结果是float型。所以便出现了该问题;'//'才是python3中结果为整数的除法。
jsx
/改成//
3.路径问题-traffic.py799行,改成traffic.npy的路径。
pip
/home/chen/.local/lib/python3.5/site-packages/pip (python 3.5)
不小心把pip删掉的原因导致的,所以需要重新配置一下。先执行下面命令。
jsx
which pip
type pip
hash -r
pip --version
-i https://pypi.tuna.tsinghua.edu.cn/simple
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple //换源
from pip._internal.cli.main import main
ImportError: No module named _internal.cli.main
jsx
sudo apt remove python-pip 执行前确保你的python和pip是同一个python环境
https://bootstrap.pypa.io/pip/2.7/get-pip.py 下载后保存
python get-pip.py --user
tensorboard-data-server==0.6.1
tensorflow-io-gcs-filesystem
tomli
ryu
python2.7安装时报错error: could not create '/usr/local/lib/python2.7/dist-packages/ryu': Permission denied
jsx
sudo chown -R $USER /usr/local 获取权限
python setup.py install