Python environment and installation

1. Distribution of Python

Compared to C++, which can run only with an executable file, Python source code should run with the interpreter. So you should know how to install an interpreter on your computer.

Typically, we won't install the python interpreter directly. We install a distribution of Python, which contains one or more than one interpreters , some useful standard librarys and other components. I will show how to install python in linux machine. Before that, I'd like to mention the important virtual environment for python.

2. I want to specify the virtual environment of Python.

When you install a distribution of Python, you may want to run a source code immediately. However, we usually don't do so. You will use a lot of librarys in your source code so that you should install a all of them so that your program will run normally. However, installing them globally is not recommended.

We usually create a virtual environment , and then install some librarys in the environment. The essense of a python environment is a folder which contains an independent interpreter and some librarys you installed. You can create more than 1 environments and when you want to run your code, choose a moderate one and activate it, then use the environment to run your code.

For instance:

bash 复制代码
# in windows system


python -m venv environment1         # create an environment

python -m venv environment2         # create another environment

# ===============================================================================
# you will see 2 folders in current folder, environment1/ and environment2/

environment1\Scripts\activate       #activate the environment
  
pip install numpy                   # install a library named numpy, the library is installed in environment1

deactivate                          # exit the environment

Now the library numpy is in environment1 , not in environment2.

Now you have a text file named my_python.py of source code using the library numpy

bash 复制代码
environment1\Scripts\activate

python my_python.py  # ok

=================================================================
environment2\Scripts\activate

python my_python.py  # error, environment2 hasn't numpy

The benefit of using virtual environment is obviously. Different projects use different environment, for example, Web projects utilize an environment with librarys like requests, flank and so on. It will make your projects more adaptive.

3. Installation of Python (in Linux System)

Steps are as follows:

1. Choose:

  • choose a python distribution. You can choose official distribution or Anaconda. Anaconda is a python distribution specifically designed for AI and data process, containing more than one python interpreters of different versions, and a lot of librarys for scientific computint.

2. Install:

After installing the distribution, you can create an environment and begin coding!

  1. activate an envitonment
bash 复制代码
python -m venv my_environment

my_environment\Scripts\activate
  1. write the code into a text file with suffix .py , for example, test.py

  2. run

bash 复制代码
#supposed that test.py is in home/python/test.py

cd home/python

python3 test.py

In this part, you know what is python envitonment and how to use it.

4. IDE installation

Just using a text deitor is boring. We need some powerful tool to help us write code and run the program. You surely don't want to write code in a plain text editor and run with python3 test.py

An Integrated development environment(IDE) is what you need, and I recomment **Pycharm,**a powerful IDE. How to install Pycharm is simple and ignored here. What I want to emphisize is how to use environment in Pycharm.

.

  1. Install Pycharm

  2. Tell what environment you want to use, click the setting button and find Interpreter

  1. Click Add Interpreter , and enter the file system to fine your interpreter . Remember that every virtual environment has an independent Interpreter, find it and add it to pycharm.

Last but not least, If you encounter any questions during installation, feel free to ask AI.

相关推荐
fengci.7 分钟前
php反序列化(复习)(第四章)
android·开发语言·学习·php·android studio
Jasmine_llq7 分钟前
《B3923 [GESP202312 二级] 小杨做题》
开发语言·状态标记算法·顺序输入输出算法·递推迭代算法·循环遍历算法·条件终止算法·累加求和算法
却道天凉_好个秋8 分钟前
pytorch(一):张量
人工智能·pytorch·python·深度学习
whatever who cares9 分钟前
android中,全局管理数据/固定数据要不要放一起?
android·java·开发语言
华清远见IT开放实验室14 分钟前
AI 算法核心知识清单(深度实战版1)
人工智能·python·深度学习·学习·算法·机器学习·ai
liu****14 分钟前
第15届省赛蓝桥杯大赛C/C++大学B组
开发语言·数据结构·c++·算法·蓝桥杯·acm
百结21419 分钟前
Python网络编程
网络·python
charlie11451419122 分钟前
嵌入式Linux模块开发——struct module 深度解析:内核模块的核心数据结构
linux·开发语言·数据结构·c
吴声子夜歌27 分钟前
ES6——Symbol详解
开发语言·javascript·es6
星辰徐哥28 分钟前
C语言运算符的优先级与结合性详解
c语言·开发语言