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
Copy file name to clipboardExpand all lines: README.md
+6-7
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ Linux, Windows and Mac OS are supported for running the code. For running the gr
45
45
46
46
### Instructions
47
47
48
-
Recommended to install an [Anaconda](https://www.anaconda.com/download/)distribution of Python -- Choose **Python 3.x** and your operating system. Note you might need to use an anaconda prompt (windows) if you did not add anaconda to the path. Open an anaconda prompt / command prompt with **python 3** in the path, then:
48
+
We recommend to install a [miniforge](https://github.com/conda-forge/miniforge) (conda-based) distribution of Python. Note you might need to use an anaconda prompt (windows) if you did not add anaconda to the path. Open an anaconda prompt / command prompt with **python 3** in the path, then:
49
49
50
50
~~~sh
51
51
pip install rastermap
@@ -59,13 +59,12 @@ pip install rastermap[gui]
59
59
Rastermap has only a few dependencies so you may not need to make a special environment for it
60
60
(e.g. it should work in a `suite2p` or `facemap` environment), but if the pip install above does not work,
61
61
please follow these instructions:
62
-
63
-
1. Open an anaconda prompt / command prompt with `conda` for **python 3** in the path.
64
-
2. Create a new environment with `conda create --name rastermap python=3.8`. Python 3.9 and 3.10 will likely work fine as well.
62
+
63
+
1. Open an anaconda prompt / command prompt which has `conda` for **python 3** in the path
64
+
3. Create a new environment with `conda create --name rastermap python=3.9`. We recommend python 3.9, but python 3.8, 3.9 and 3.11 will also work.
65
65
4. To activate this new environment, run `conda activate rastermap`
66
-
5. To install the minimal version of rastermap, run `pip install rastermap`.
67
-
6. To install rastermap and the GUI, run `pip install rastermap[gui]`. If you're on a zsh server, you may need to use ' ' around the rastermap[gui] call: `pip install 'rastermap[gui]'`.
68
-
66
+
5. (option 1) To install rastermap with the GUI, run `python -m pip install rastermap[gui]`. If you're on a zsh server, you may need to use ' ': `python -m pip install 'rastermap[gui]'`.
67
+
6. (option 2) To install rastermap without the GUI, run `python -m pip install rastermap`.
69
68
To upgrade rastermap (package [here](https://pypi.org/project/rastermap/)), run the following in the environment:
0 commit comments