Skip to content

gauthiermartin/deep_extraction

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deep-learning

Installation

Ubuntu 16.04.03

We must first install python 3.6

$ sudo add-apt-repository ppa:jonathonf/python-3.6
$ sudo apt-get update
$ sudo apt-get install -y python3.6 python3.6-dev 

Install virtualenv

$ sudo apt-get install -y python-pip
$ sudo pip install virtualenv 
$ sudo pip install virtualenvwrapper

Install virtualenvwrapper

Create required folder to store your virtualenv and your project

$ mkdir $HOME/.virtualenvs
$ mkdir $HOME/Projects

Insert those line at the bottom of your shell config file i.e: .bashrc

export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Projects
source /usr/local/bin/virtualenvwrapper.sh

Create project virtualenv

This will create a virtualenv for the project

$ cd PROJECT_DIR
$ mkvirtualenv -p python3.6 image-augmentation-tool

For more information virtualenvwrapper doc

Install python requirements

This will install python requierements

$ pip install -r requirements.txt 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%