Linux (ubuntu) install Pycharm

1. Download PyCharm from the official website Download PyCharm: Python IDE for Professional Developers by JetBrains

 Choose the community version of Linux here, which is free, that is, community

 

2. Put the downloaded file into the download folder of ubuntu's home directory or the self - built software folder

Switch the terminal to this folder to decompress the file

tar -zxvf pycharm-community-2021.2.3.tar.gz

The code is changed according to the version number of the package name

 3. Charge for cracking software

linuxjihuo.zip - Lan Zuoyun

I bought the cracking script for 15 oceans, and it is now free.

Unzip all the files of Lanzuoyun and put them in the folder of pycharm+version number just downloaded

Add permissions to the run.sh script

chmod 777 run.sh

then run the script

sh run.sh

 

 The underlined 20 in run.sh was added by me, because the terminal reported that it could not find the information of ****micool17/18/19 when it was running. Then I changed it myself.

4. Next, modify the configuration file
vi /etc/hosts
to change the hosts file ( etc/hosts ), add a line of code: 0.0.0.0 account.jetbrains.com

 

5. Let the terminal enter the /bin directory of the decompressed file

 Install with the following command

sh pychram.sh

6. Configure the environment variables of pycharm in the current directory
Write the picture description here
Press the i key to enter the insert mode
Add the following two directory paths after vim ~/.bashrc
The available pwd viewing path is: /usr/local/bin/pycharm-2018.1 .3
export PyCharm=/usr/local/bin/pycharm-2018.1.3 (The latter part should be based on your own path at the time. Before configuring the environment variables, you can enter the decompressed file, order pew to view the address, and copy, in case typo)
exportPATH=PATH

7. Refresh the configuration file

source ~/.bashrc

8. After the refresh is successful, you can start the pycharm
startup command at any location under the current location: pycharm.sh

 Summarize

python3.8 tutorial https://www.linuxidc.com/Linux/2019-11/161448.htm

pycharm's crack script package linuxjihuo.zip - Lanzuoyun

Push the installation of pycharm under Linux_xiaoxiaofengsun's blog-CSDN blog_linux installation pycharm tutorial

Guess you like

Origin blog.csdn.net/weixin_58503231/article/details/122018364