I have Python 3.5 (3.5.6) installed via Anaconda, and now I’d like to be able to use Python 3.7, keeping 3.5 as the default (the one python "insert script name"
would run on the command line). I commanded the computer to activate it, but it isn’t working.
JavaScript
x
51
51
1
Windows PowerShell
2
Copyright (C) Microsoft Corporation. All rights reserved.
3
4
PS C:WINDOWSsystem32> conda create --name seiska python=3.7
5
WARNING: A space was detected in your requested environment path
6
'C:Program FilesAnaconda3envsseiska'
7
Spaces in paths can sometimes be problematic.
8
Solving environment: done
9
10
## Package Plan ##
11
12
environment location: C:Program FilesAnaconda3envsseiska
13
14
added / updated specs:
15
- python=3.7
16
17
18
The following NEW packages will be INSTALLED:
19
20
ca-certificates: 2018.03.07-0
21
certifi: 2018.10.15-py37_0
22
openssl: 1.1.1a-he774522_0
23
pip: 18.1-py37_0
24
python: 3.7.1-he44a216_5
25
setuptools: 40.6.2-py37_0
26
vc: 14.1-h0510ff6_4
27
vs2015_runtime: 14.15.26706-h3a45250_0
28
wheel: 0.32.3-py37_0
29
wincertstore: 0.2-py37_0
30
31
Proceed ([y]/n)? y
32
33
Preparing transaction: done
34
Verifying transaction: done
35
Executing transaction: done
36
#
37
# To activate this environment, use:
38
# > activate seiska
39
#
40
# To deactivate an active environment, use:
41
# > deactivate
42
#
43
# * for power-users using bash, you must source
44
#
45
46
PS C:WINDOWSsystem32> activate seiska
47
PS C:WINDOWSsystem32> python
48
Python 3.5.6 |Anaconda 4.2.0 (64-bit)| (default, Aug 26 2018, 16:05:27) [MSC v.1900 64 bit (AMD64)] on win32
49
Type "help", "copyright", "credits" or "license" for more information.
50
>>>
51
Advertisement
Answer
In the Start menu you have to open “Anaconda Prompt” which is different from the Normal “Command Prompt”. Your environment gets activated from there.
And then execute activate <env-name>