Skip to content

Gauraviitkgp/Tensorflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TENSORFLOW

How to create a virtual enviroment for tensorflow

link

Create a new virtual environment by choosing a Python interpreter and making a ./venv directory to hold it:

	virtualenv --system-site-packages -p python3 ./venv 

Activate the virtual environment using a shell-specific command:

	source ./venv/bin/activate  # sh, bash, ksh, or zsh

When virtualenv is active, your shell prompt is prefixed with (venv).

Install packages within a virtual environment without affecting the host system setup. Start by upgrading pip:

	pip install --upgrade pip

	pip list  # show packages installed within the virtual environment

And to exit virtualenv later:

	deactivate  # don't exit until you're done using TensorFlow

For ipython

link

Create enviroment

	conda create --name RL python=3

Activate it

	conda activate RL

To deactivate it

	conda deactivate

to go to jupyter notebook

	jupyter notebook

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors