TensorFlow: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 9: Line 9:
| valign="top" |
| valign="top" |
<source lang="bash">
<source lang="bash">
python3 -m venv .venv --prompt="academia"
python3 -m venv .venv --prompt="TensorFlow"
# source .venv/bin/activate
# source .venv/bin/activate
# (academia) $
# (academia) $
Line 16: Line 16:
| valign="top" |
| valign="top" |
<source lang="bash">
<source lang="bash">
python3 -m venv .venv --prompt="molecule"
python3 -m venv .venv --prompt="TensorFlow"
# source .venv/bin/activate
# source .venv/bin/activate
# (molecule) $
# (molecule) $
Line 23: Line 23:
| valign="top" |
| valign="top" |
<source lang="PowerShell">
<source lang="PowerShell">
python -m venv .venv --prompt="molecule"
python -m venv .venv --prompt="TensorFlow"
# .venv\Scripts\activate
# .venv\Scripts\activate
# (molecule) PS>
# (molecule) PS>

Revision as of 21:10, 10 February 2023

Install

python3 -m venv .venv --prompt="TensorFlow"
source .venv/bin/activate

Knowledge

python3 -m venv .venv --prompt="TensorFlow"
# source .venv/bin/activate
# (academia) $
python3 -m venv .venv --prompt="TensorFlow"
# source .venv/bin/activate
# (molecule) $
python -m venv .venv --prompt="TensorFlow"
# .venv\Scripts\activate
# (molecule) PS>

References