linux配置python环境

目录

    • 安装screen
    • 安装解压工具
    • 安装python环境
    • 安装程序所需要的依赖包
    • 镜像附录

安装screen

screen用于后台运行程序

先升级包管理工具

sudo apt-get update    

安装screen

sudo apt-get install screen

创建screen

screen -S erl

安装解压工具

对上传到服务器的文件进行解压
安装

sudo apt-get update
sudo apt-get install unzip

解压

unzip xxx.zip

安装python环境

安装python3.7

conda create -n my_env python=3.7 -y

切换至所安装的环境

conda activate my_env

安装程序所需要的依赖包

生成requirements.txt文件

pip freeze > requirements.txt

或者

pip install pipreqs
pipreqs . --encoding=utf-8 --force

安装依赖包
注意这里加了阿里云镜像加速

pip install -i https://mirrors.aliyun.com/pypi/simple/ -r requirements.txt 

镜像附录

清华大学镜像

https://pypi.tuna.tsinghua.edu.cn/simple

阿里云镜像

https://mirrors.aliyun.com/pypi/simple/

网易镜像

https://mirrors.163.com/pypi/simple/ 

豆瓣镜像

https://pypi.douban.com/simple/ 

百度云镜像

https://mirror.baidu.com/pypi/simple/

中科大镜像

https://pypi.mirrors.ustc.edu.cn/simple/

华为云镜像

https://mirrors.huaweicloud.com/repository/pypi/simple/

腾讯云镜像

https://mirrors.cloud.tencent.com/pypi/simple/

你可能感兴趣的:(python,工具教程,linux,python,运维)