当前位置:网站首页>Install pycharm
Install pycharm
2022-07-28 07:17:00 【Sauerkraut】
1. install pycharm
- Get into pycharm Official website :https://www.jetbrains.com/pycharm/download/#section=windows

- Install Community Edition , Open the terminal , Input :sudo snap install pycharm-community --classic
Install professional , Open the terminal , Input :sudo snap install pycharm-professional --classic
- Search under computer path pycharm
- open pycharm-community
- open Folder 147
- open /bin
- stay /bin Open in directory terminal , Input :
sh format.sh
- On the toolbar , Right click on the pycharm, choice lock
pycharm installation is complete
2. load python2.7,python3.5
Newly installed pycharm in , No load python, Pictured :

Load from system python:
- Click on Set up

- Click on Add...
- choice System Interpreter

- Click on Drop triangle
load python2.7: Choose python2
load python3.5: Choose python3
- Click on OK
3. stay pycharm Install dependent packages in
problem :‘No module named setuptools’
install setuptools:
Python 2.x: sudo apt-get install python-setuptools
Python 3.x: sudo apt-get install python3-setuptools
If the following errors occur after installation :AttributeError: module 'setuptools.dist' has no attribute 'check_specifier'
Python 2.x:
pip install --upgrade pip
hash -r pip
Python 3.x:
pip3 install --upgrade pip
hash -r pip3
边栏推荐
猜你喜欢
随机推荐
Method of decomposing path into directory name and file name
Add, delete, check and modify linked lists
232(母)转422(公)
最短寻道时间优先(SSTF)
Static and floating routes
Install Nessus under Kali
NoSQL之Redis配置与优化
Basic knowledge of functions and special points
Wangeditor (@4.7.15) - lightweight rich text editor
主动扫描技术nmap详解
Pictures are adaptive to the screen
Database-Trivial
Understanding of maximum likelihood estimation, gradient descent, linear regression and logistic regression
在转化词向量之前先转化为AST再转化为词向量的实现方法
Differences and relationships among NPM, Yran and NPX
shell---条件语句练习
caffe fine tune
高性能内存队列-Disruptor
Standard C language learning summary 8
最早截止时间优先(EDF)








