赞
踩
用pip安装依赖包时,默认是从国外下载,可以指定国内源,速度飞快
pip install -i 国内镜像地址 包名
例如: pip install -i https://mirrors.aliyun.com/pypi/simple/ numpy
国内常用pip镜像地址
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:https://mirrors.aliyun.com/pypi/simple/
豆瓣: https://pypi.douban.com/simple/ --trusted-host pypi.douban.com
pypi.org : https://pypi.org/simple
--ignore-installed --upgrade:忽略已安装的,升级安装
--no-dependencies: 忽略版本依赖关系
--force-reinstall :强制重新安装
pip install --ignore-installed --upgrade tensorflow
pip install --no-cache-dir --force-reinstall --no-binary :all: scikit-learn
百度:https://mirror.baidu.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:https://pypi.hustunique.com/
山东理工大学:https://pypi.sdutlinux.org/
pip install mxnet-cu102 -f https://dist.mxnet.io/python
国内常用conda镜像地址
中科大:--channel https://mirrors.ustc.edu.cn/anaconda/pkgs/free
例如 conda install --channel https://conda .anaconda.ort/pandas bottleneck
conda install安装不成功时加--channel conda-forge : 例如 conda install --channel conda-forge
-c bioconda 例如 :conda install -c bioconda sra-tools
conda install -c bioconda/label/cf201901 sra-tools
查看源:conda config --show-sources
恢复官方镜像源:conda config --remove-key channels
创建 .condarc文件:
conda config --set show_channel_urls yes
清除索引缓存 :conda clean -i
查看conda版本: conda --version
升级conda版本: conda update conda
升级conda所有包:conda update --all
创建环境tensorflow,并指定python=3.7:conda create -n tensorflow python=3.7
conda create -n name --override-channels -c conda-forge
激活环境:windows用户: conda activate tensorflow linux用户: source activate tensorflow
退出环境:windows用户:deactivate linux用户: source deactivate
复制一个环境:克隆tensorflow来创建一个称为tensorflow2的副本 : conda create -n tensorflow2 --clone tensorflow
通过环境文件创建环境:conda env create -f environment.yaml
提升到root权限 sudo -s
创建虚拟环境 python -m venv py38
pip install -U --ignore-installed wrapt enum34 simplejson netaddr
使用命令查看jupyter的内核是否是正确的内核
jupyter kernelspec list
如果不正确,使用jupyter kernelspec remove 内核名 删除掉内核
jupyter kernelspec remove
使用python -m ipykernel install --user 安装内核,再安装pypiwin32 wrapt
python -m ipykernel install --user
pip install -i https://pypi.douban.com/simple pypiwin32
pip install wrapt --ignore-installed
装插件会出现Conda选项卡,然后再安装jupyter conda install jupyter
- conda install nb_conda
- conda install jupyter
解决办法
pip install --no-deps torchvision
解决办法 在 Anaconda Prompt 终端执行 python3.7 -m pip install jupyter_contrib_nbextensions;其中python3.7 是你安装python的版本
python3.7 -m pip install jupyter_contrib_nbextensions
解决办法
pip install ipython --ignore-installed ipython
- curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
- python get-pip.py --force-reinstall
- conda update conda
- conda update --all
修改[Python目录]\Lib\idlelib\PyShell.py文件bai,在du1300行附近,将zhi
def main():函数下面
use_subprocess = True
修改为:dao
use_subprocess = False
先安装libffi-devel 再编译python3.7
Ubuntu
Sudo apt-get install libffi-dev
Centos
Yum install libffi-devel -y
Windows 10 SDK - Windows app development
- Import os
- os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
添加 PPA 软件仓库,需要输入用户密码,更新软件索引
- sudo add-apt-repository ppa:graphics-drivers/ppa
- sudo apt update
pip install keras-models
查阅资料之后发现:在./configure
过程中,如果没有加上–with-ssl
参数时,默认安装的软件涉及到ssl的功能不可用,
刚好pip3过程需要ssl模块,而由于没有指定,所以该功能不可用
./configure --prefix=/usr/local/python3 --with-ssl
numpy版本太高,降级为1.16.2
pip install numpy==1.16.2
pip install pypiwin32
删除Mysql80服务,进入cmd 输入sc delete MySQL80
sc delete MySQL80
一直提示提交错误报告,这可能是防火墙问题,使用命令
conda config --set ssl_verify false
pip install pyyaml
- import os
- os.environ["KMP_DUPLICATE_LIB_OK"] = "TRUE"
pyqt5问题,无法使用jupyter spyder打不开
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyqt5==5.12.3 pyqtwebengine==5.12.1
ipynb文批处理转化为普通的Python文件
jupyter nbconvert --to script *.ipynb
sudo apt-get install libopenblas-base libopenmpi-dev
sudo apt-get install libglib2.0-0
linux安装nvidia驱动
加-no x check就可以正常安装
- 1.将当前目录下所有.txt文件打包并压缩归档到文件this.tar.gz,我们可以使用
- tar czvf this.tar.gz ./*.txt
- 2.将当前目录下的this.tar.gz中的文件解压到当前目录我们可以使用
- tar xzvf this.tar.gz ./
mininet是一个仿真工具,能够仿真一个SDN网络,包含主机、交换机、控制器和链路组成的虚拟网络。开拓扑指令
sudo mn --topo=tree,3,2 --controller=remote --switch=ovsk
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。