Code for the Openscope Surround project
Analysis code is in analysis and useful tools/utility functions are in an
installable package called oscopetools.
How to make an editable installation of oscopetools using pip. This will
let you edit the code in oscopetools and import it immediately into any
python script without having to reinstall the package.
- Get a copy of the git repository by running
git clone https://github.com/saskiad/openscope_surround.gitin Terminal.App or any other terminal emulator. cd openscope_surroundto open the downloaded git repository.- If you normally use python from inside an Anaconda environment, activate it
with
conda activate env_name, replacingenv_namewith the name of your environment. - Make an editable install of
oscopetoolswithpip install -e .(note the-eflag).
Same as above but using more programs. Run the git command in Git Bash and
run the conda command in Conda Prompt (or Anaconda Prompt). The pip command
can probably be run in the Command Prompt.