Python Virtual Environment

Source: Internet
Author: User
Tags install django pip install django virtual environment virtualenv
1, installation virtualenv

pip3 install virtualenv

2. create a virtual environment using the VIRTUALENV command

virtualenv --no-site-packages -p /usr/local/python3/bin/python3 venv           没有类包的干净环境       指定python版本           环境地址

3. Enter the virtual environment

source venv/bin/activate

4, in the virtual environment completely isolated from the Python environment , you can install the class package through PIP

pip install django==1.11.6pip install uwsgi

5. run the project using the virtual environment

/.../venv/bin/python manage.py runserver 0.0.0.0:8000

6. Exit Virtualenv

deactivate

Python Virtual Environment

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.