Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| technical:recipes:tensorflow-in-virtualenv [2025-10-28 15:52] – [Create TensorFlow Virtualenv] thuachen | technical:recipes:tensorflow-in-virtualenv [2025-11-06 15:30] (current) – [Create TensorFlow Virtualenv] thuachen | ||
|---|---|---|---|
| Line 40: | Line 40: | ||
| tensorflow | tensorflow | ||
| </ | </ | ||
| - | All versions of the TensorFlow virtual environment will be stored in the directory '' | + | All versions of the TensorFlow virtual environment will be stored in the directory '' |
| <code bash> | <code bash> | ||
| Line 55: | Line 55: | ||
| <code bash> | <code bash> | ||
| - | [(my_workgroup: | + | [(my_workgroup: |
| - | WARNING: A directory already exists at the target location '/ | + | WARNING: A directory already exists at the target location '/ |
| but it is not a conda environment. | but it is not a conda environment. | ||
| Continue creating environment (y/[n])? y | Continue creating environment (y/[n])? y | ||
| Line 68: | Line 68: | ||
| # To activate this environment, | # To activate this environment, | ||
| # | # | ||
| - | # $ conda activate / | + | # $ conda activate / |
| # | # | ||
| # To deactivate an active environment, | # To deactivate an active environment, | ||
| Line 78: | Line 78: | ||
| <code bash> | <code bash> | ||
| - | [(my_workgroup: | + | [(my_workgroup: |
| - | WARNING: A directory already exists at the target location '/ | + | WARNING: A directory already exists at the target location '/ |
| but it is not a conda environment. | but it is not a conda environment. | ||
| Continue creating environment (y/[n])? y | Continue creating environment (y/[n])? y | ||
| Line 91: | Line 91: | ||
| # To activate this environment, | # To activate this environment, | ||
| # | # | ||
| - | # $ conda activate / | + | # $ conda activate / |
| # | # | ||
| # To deactivate an active environment, | # To deactivate an active environment, | ||
| Line 97: | Line 97: | ||
| # $ conda deactivate | # $ conda deactivate | ||
| </ | </ | ||
| - | + | We will need to run the '' | |
| - | Ignore that '' | + | <code bash> |
| + | [(my_workgroup: | ||
| + | (/ | ||
| + | </ | ||
| + | Use '' | ||
| <code bash> | <code bash> | ||
| - | [(my_workgroup: | + | (/ |
| - | [(my_workgroup: | + | [(my_workgroup: |
| </ | </ | ||
| Line 123: | Line 127: | ||
| success: 0 | success: 0 | ||
| versions: | versions: | ||
| - | "2.19.0: | + | "2.17.0: |
| - | description: | + | description: |
| dependencies: | dependencies: | ||
| - miniconda/ | - miniconda/ | ||
| - | "2.19.0: | + | "2.17.0: |
| - | description: | + | description: |
| dependencies: | dependencies: | ||
| - miniconda/ | - miniconda/ | ||
| Line 148: | Line 152: | ||
| success: 0 | success: 0 | ||
| versions: | versions: | ||
| - | "2.19.0: | + | "2.17.0: |
| - | description: | + | description: |
| dependencies: | dependencies: | ||
| - miniconda/ | - miniconda/ | ||
| - | "2.19.0: | + | "2.17.0: |
| - | description: | + | description: |
| dependencies: | dependencies: | ||
| - miniconda/ | - miniconda/ | ||
| Line 175: | Line 179: | ||
| [/ | [/ | ||
| tensorflow | tensorflow | ||
| - | * 2.19.0: | + | * 2.17.0: |
| - | 2.19.0: | + | 2.17.0: |
| | | ||
| : | : | ||
| Line 189: | Line 193: | ||
| # Setup TensorFlow virtualenv: | # Setup TensorFlow virtualenv: | ||
| # | # | ||
| - | vpkg_require tensorflow/ | + | vpkg_require tensorflow/ |
| # | # | ||