Skip to content

Virtualenv Setting

JihunJung edited this page Oct 17, 2019 · 1 revision
  • Install Virutalenv
    • $ pip install virtualenv
  • python version별 가상환경 생성
# python2
$ python -m virtualenv venv
$ virtualenv venv --python=python
$ virtualenv venv --python=python2.7

# python3
$ python3 -m virtualenv venv
$ virtualenv venv --python=python3
$ virtualenv venv --python=python3.7
  • python version별 가상환경 실행/종료
    • 실행 → $ source [venv]/bin/activate
    • 종료 → $ deactivate
  • HOME
    1. Environment Setting
      • Install CUDA
      • Install cuDNN
      • Python Setting
        • Install Python
        • virtualenv setting
        • Jupter setting
    2. DeepLearning Basic
      • To do
    3. Object Detection
      • How to use TensorFlow Object Detection API
      • Remote Tensorboard Connection
      • How to use pycocotools for managing dataset(Using coco format)
    4. TensorFlow
      • To do
    5. Ubuntu
      • User management
      • SSH connect(with login message)
      • File Transfer between local and remote
    6. ETC
      • To do

Clone this wiki locally