zoukankan      html  css  js  c++  java
  • python3.5 自带的虚拟环境使用

    首先我们要选择一个目录作为虚拟环境的目录, 这里选择c:myenv

    cd  myenv
    python -m venv .        #在当前目录下创建虚拟环境

    创建完成之后,myenv下会多出一些文件

    image

    进入scripts目录,该目录下有个文件 activate.bat, 这个是用来激活虚拟环境的

    activate.bat     #激活虚拟环境

    激活之后,提示符前会有<myenv>字样:

    image

    之后在虚拟环境下安装django1.10:

    (myenv) C:myenvScripts>pip install django==1.10

    安装成功后测试一下:

    (myenv) C:myenv>python
    Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AM
    D64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import django
    >>> django.VERSION
    (1, 10, 0, 'final', 1)
    >>>

    退出虚拟环境,只要关掉cmd窗口就行了。

    退出之后在系统环境下导入django会报错的,因为系统没装django:

    C:Usershuangxm>python
    Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AM
    D64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import django
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    ImportError: No module named 'django'
    >>>
  • 相关阅读:
    UIPickerView UIDatePicker的常见属性
    IOS笔记4
    判断代理是否实现了协议方法
    TableViewCell中自定义XIB的使用
    TableView中表格的添加与删除
    TableViewCell的循环使用
    NSTimer与运行循环
    IOS笔记3
    win7系统中文件夹按字母快速定位
    Intent启动常用的系统组件
  • 原文地址:https://www.cnblogs.com/huangxm/p/5930764.html
Copyright © 2011-2022 走看看