CentOS installation pycharm

First, the environment: Linux | CentOS system

Second, the purpose: use Pycharm (version 2018.3.4) in the Linux environment

Third, the statement: can not be used for commercial, exchange only for use!

First, prepare the environment CentOS 6 ISO image

Virtual Machine VMware Workstations 15 Pro

First, the original image is mounted CentOS6

(The steps are simple, it takes a long time, about ten minutes)

Second, enter the graphical interface, ready to install pycharm

1) Download Pycharm archive to the root directory

cd ~
wget https://download.jetbrains.com/python/pycharm-professional-2018.3.4.tar.gz

  ps: wget command to the root of the current default download folder

2) Unzip the downloaded archive, and enter the startup file

tar -zxvf pycharm-professional-2018.3.4.tar.gz
cd pycharm-2018.3.4/bin

 

3) Next download the cracked version patch

Baidu cloud disk permanently Share Address: Click for the download link

Extraction code: 0ca0

Download JetbrainsCrack-release-enc.jar file to put under pycharm-2018.3.4 / bin directory

Modify the configuration file

Find pycharm.vmoptions and pycharm64.vmoptions in pycharm-2018.3.4 / bin directory

Append a single line of two files:

-javaagent: root / pycharm-2018.3.4 / bin / JetbrainsCrack-release-enc.jar 
 after #cd enter pycharm-2018.3.4 / bin directory using pwd to see the current path

  

4) steps to crack

First modify the hosts

vi sudo / etc / hosts 
 will be 0.0 . 0.0 account.jetbrains.com added to the last row, Save Back

Start pycharm input matching activation code

After starting pycharm select the activation code to activate Activate ---> Activation code, direct copy and paste the activation code below, then click OK to activate:

 ThisCrackLicenseId-{
 “licenseId”:”11011”,
 “licenseeName”:”Wechat”,
 “assigneeName”:”IT--Pig”,
 “assigneeEmail”:”731342602@qq.com”,
 “licenseRestriction”:””,
 “checkConcurrentUse”:false,
 “products”:[
 {“code”:”II”,”paidUpTo”:”2099-12-31”},
 {“code”:”DM”,”paidUpTo”:”2099-12-31”},
 {“code”:”AC”,”paidUpTo”:”2099-12-31”},
 {“code”:”RS0”,”paidUpTo”:”2099-12-31”},
 {“code”:”WS”,”paidUpTo”:”2099-12-31”},
 {“code”:”DPN”,”paidUpTo”:”2099-12-31”},
 {“code”:”RC”,”paidUpTo”:”2099-12-31”},
 {“code”:”PS”,”paidUpTo”:”2099-12-31”},
 {“code”:”DC”,”paidUpTo”:”2099-12-31”},
 {“code”:”RM”,”paidUpTo”:”2099-12-31”},
 {“code”:”CL”,”paidUpTo”:”2099-12-31”},
 {“code”:”PC”,”paidUpTo”:”2099-12-31”}
 ],
 “hash”:”2911276/0”,
 “gracePeriodDays”:7,
 “autoProlongated”:false}

(Verify activation status of the Active IS visible an until january 1 Subscription, 2100 2100 Nian 1 Yue 1 Ri subscription will continue until)

Help -> About    

 

Installation complete!

 =============================================================================

 The above is installed pycharm, start the program needs cmd into the start directory

The following operations can Pycharm program to create soft links, and achieve double-click on the desktop to start

1) Create a soft, easy to enter in any directory PyCharm , open the program

ln -s /root/pycharm-2018.3.4/bin/pycharm.sh /usr/sbin/pycharm

2) Create a shortcut to a file into the bin directory

vim /usr/share/applications/pycharm.desktop

#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Name=Pycharm
Comment=pycharm-2018.3.4
Exec=/root/pycharm-2018.3.4/bin/pycharm.sh
Icon=/root/pycharm-2018.3.4/bin/pycharm.png
Terminal=false
StartupNotify=true
Type=Application
Categories=Application;

Add Permissions

chmod a+x /usr/share/applications/pycharm.desktop

Note that the file path to correspond with their own, in addition .destop file comments configuration items to separate columns in a row, or will be error

Then go to the list of applications to find pycharm sent to the desktop

table of Contents:

/usr/share/applications

Right pycharm, copy and paste into your desktop to complete

 

 effect:

 

pycharm installation is complete, the following configuration file setting in the visible pycharm3.4

Guess you like

Origin www.cnblogs.com/security-guard/p/12129178.html