linux使用anaconda安装python包
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1创建环境
conda create -n py36 python=3.6
2激活环境
source activate py36
或者 conda acitvate py36
3安装包
安装包之前,必须激活环境,否则会安装到base环境下
3.1 conda方式
- 安装包
conda install tensorflow(或者conda install tensorflow=version)
- 查看包的版本
conda search tensorflow-gpu
3.2 pip方式(推荐)
- 安装包
conda使用国内镜像安装可能会出现包不存在的情况,可以使用pip使用特定的镜像源安装(推荐使用清华镜像)
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==1.1.0(推荐)
pip install -i https://pypi.douban.com/simple/ tensorflow==1.1.0(推荐镜像)
pip --default-timeout=100 install tensorflow==2.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
- 查看包的版本
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==
4 查看环境下的python包
conda list
5 查看所有conda环境
conda info --env
6退出环境
source deactivate
7删除环境
conda remove -n py36 --all
8 生成依赖文件
pip3 freeze > requirements.txt
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:1 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)