摘要: pycharm-windows编码在linux运行 1. 新建项目或者打开项目 File->Settings 2. 在settings中选择: Project:xxxx->Project Interpreter 3. 这里我已经配置好了,如果没有要选择这个: 4. 点击Add,进入:SSH Inte 阅读全文
posted @ 2021-04-29 10:26 七月流星雨 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 1.创建python的虚拟环境 [root@python ~]# mkdir -p /virtualenvs 安装虚拟环境virtualenv [root@python ~]# pip3 install virtualenv -i https://pypi.tuna.tsinghua.edu.cn/ 阅读全文
posted @ 2021-04-29 10:21 七月流星雨 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1. 安装虚拟环境 使用windows+R键,输入cmd,进入windows终端,运行pip install virtualenv 安装虚拟环境 pip install virtualenv 使用windows+R键,输入cmd,进入windows终端,运行pip install virtualen 阅读全文
posted @ 2021-04-29 10:16 七月流星雨 阅读(808) 评论(0) 推荐(0) 编辑
摘要: mkdir ~/.pip tee ~/.pip/pip.conf <<-'EOF' [global] index-url = https://mirrors.aliyun.com/pypi/simple/ [install] trusted-host = mirrors.aliyun.com EOF 阅读全文
posted @ 2021-04-29 10:04 七月流星雨 阅读(234) 评论(0) 推荐(0) 编辑