Python environment setup-install and use pycharm, python-pycharm
Learning URL:
-- Cainiao tutorial (2.0 and 3.0)
Http://www.runoob.com/python/python-tutorial.html
Http://www.runoob.com/python3/python3-tutorial.html
-- Pycharm software usage (official website)
Https://www.jetbrains.com/help/pycharm/quick-start-guide.html
-- Natural Language Learning
Http://www.52nlp.cn/
Blog:
Http://blog.csdn.net/chenggong2dm/article/details/9365437
1. Download the python package
Here, the installation program on the python official website is not used, but anaconda, which is installed on the python official website. You need to install specific packages on your own after the installation, and then use anaconda, which is almost permanent.
Https://www.anaconda.com/download/
Download the corresponding installer based on your operating system.
Run the installer and modify the installation path. You need to record the installation path slightly. You need to use the next pycharm software to select the parser. Next to finish.
My installation path is: d: \ ProgramData \ Anaconda3
Ii. Download the open-source community version pycharm
Https://www.jetbrains.com/pycharm/download/#section=windows
Download the Community version installer, run the installer, modify the installation path, and click next to finish.
3. Create a project
1. Select the Save path of the project and enter the project name.
2. Select the location of the Parser (anaconda installation path and executable file)
There will be some shortcut key introduction, you can take a look, don't want to read point close.
Right-click the hello project name and create a new file.
Enter the new file name, ending with. py.
In the new file, enter:
print ("Hello, Python!");
Right-click to run, and the console outputs Hello, Python! So far, the first entry program has ended.