You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: We recommend the [Anaconda][anaconda_dl] Python distribution, which contains many easy-to-install scientific python packages. If you already had a non-Anaconda version of python installed, you will need to make sure you use Anaconda in order to follow the instructions below.
11
+
**We recommend** the [Anaconda][anaconda_dl] Python distribution, which contains many easy-to-install scientific python packages and recommend to create a separate environment.
11
12
12
-
* Download and Install [Anaconda][anaconda_dl]. The current recommended Python version is 3.11. Other Python 3 versions should work but are not actively tested.
13
+
If you already had a non-Anaconda version of python installed, you will need to make sure you use Anaconda in order to follow the instructions below. The use of the conda environment is optional, but provides a clean, known working environment for ScopeFoundry.
13
14
14
-
* Anaconda provides a way to make a clean set of packages in an "environment". Follow these steps to create an [conda environment](http://conda.pydata.org/docs/using/envs.html). This environment includes ScopeFoundry and all of the packages ScopeFoundry needs to run.
15
+
**Windows**
15
16
16
-
__Windows__
17
+
1. Download and install [mininaconda](anaconda_dl) Python distribution
18
+
2. Create an environment with required dependencies. Anaconda provides a way to make a clean set of packages in an "environment". Follow these steps to create an [conda environment][anaconda_env_docs]. In `anaconda(3) prompt` run:
19
+
```sh
20
+
conda create -n scopefoundry python=3.13
21
+
```
22
+
To include ScopeFoundry and all of the packages ScopeFoundry needs to run activate the environment:
The first two lines create and activate a clean python / conda environment for your ScopeFoundry app to use, the next lines install the required packages and the final line install the ScopeFoundry package itself.
34
-
35
-
The use of the conda environment is optional, but provides a clean, known working environment for ScopeFoundry
31
+
*`qtconsole` `matplotlib` are optional*
36
32
37
33
__Mac / Linux__
38
34
39
-
Same step as above except that you can use `terminal` instead of `anaconda prompt`.
35
+
Same step as above except that
40
36
41
-
For olders versions of anaconda (<4.4 before 2017) you have to replace `conda activate scopefoundry` with
37
+
- Use `terminal` instead of `anaconda prompt`.
42
38
43
-
```sh
44
-
source activate scopefoundry
45
-
```
39
+
- For olders versions of anaconda (<4.4 before 2017) you have to replace `conda activate scopefoundry` with
0 commit comments