Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating readme with the packaging information #164

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 117 additions & 51 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,95 +1,161 @@
# Production installation
# Installing on Linux

## Pre installation
Download bash script to install [here](https://raw.githubusercontent.com/MetaCell/PsyNeuLinkView/feature/PSYNEU-140/package/linux_installer.sh).
It's recommended to download it in your home directory.

This application comes with a requirement for node [version 16.16](https://nodejs.org/en/blog/release/v16.16.0), please install that node version or nvm ([macos installation](https://aws.plainenglish.io/how-to-install-nvm-on-a-mac-8c1e9d1adc17) or [linux installation](https://tecadmin.net/how-to-install-nvm-on-ubuntu-20-04/)) to manage multiple node version.
On terminal, go to your home directory

In order to being able to run successfully PsyNeuLinkView you will need to follow the steps below
```
cd ~
```

Change file permissions to allow user to run it

```
chmod + x linux_installer.sh
```

And run installer

```
./linux_installer.sh
```

After installation is done:

If conda environment is already active, run

```
psyneulinkviewer
```

If conda environment is not active, then run :

```
source ~/.profile
conda activate psyneulinkview
psyneulinkviewer
```

The application should open up succesfully after this. An icon will be visible on the Desktop as well.

# Installing on MAC

Download bash script to install [here](https://raw.githubusercontent.com/MetaCell/PsyNeuLinkView/feature/PSYNEU-140/package/mac_installer.sh).
It's recommended to download it in your home directory.

On terminal, go to your home directory

```
cd ~
```

Give user permissions to file

```
chmod +x mac_installer.sh
```

- Create a conda environment
And run installer

```
conda create --name psnl_viewer python=3.11
./mac_installer.sh
```

* Activate the conda environment just created
After installation is done:

If conda environment is already active, run

```
conda activate psnl_viewer
open ~/psyneulinkviewer-darwin-x64/psyneulinkviewer.app/
```

* Make the pre_installation.sh script executable
If conda environment is not active, then run :

```
chmod +x pre_installation.sh
source ~/.bash_profile
conda activate psyneulinkview
open ~/psyneulinkviewer-darwin-x64/psyneulinkviewer.app/
```

* Run the pre_installation script that will take care of installing PsyNeuLink
The application should open up succesfully after this. A desktop icon should be visible as well.

# Installation process inside script

The scripts above run the following commands in order:

Firs installs the python module 'psyneulinkviewer' from PyPi

```
bash pre_installation.sh
sudo pip install psyneulinkviewer
```

* Download the packaged version of the software from the [releases page](https://github.com/MetaCell/PsyNeuLinkView/releases) link, then
This commands installs required libraries and packages. Also creates a conda enviroment where the needed packages are installed.

After successfully installing the python package above, it reset the user's bash profile to apply the settings changes

- Linux

### MacOS
```
source ~/.profile
```

* Open your terminal and navigate to the folder containing the archive osx.tar.gz previously downloaded
- Mac

* Open the archive and then navigate in the app folder with the commands below
```
source ~/.bash_profile
```

```
tar xvfz osx.tar.gz
cd PsyNeuLinkViewer-darwin-x64/PsyNeuLinkViewer.app/Contents/MacOS/
```
Then, a desktop file is created on the Desktop which allows users to open the application this way

* Before to launch the application ensure that you are running the node version required, so
# Psyneulinkviewer Requirements

```
node --version
```
Psyneulinkviewer requires:

and if this is different from v16.16 then either follow the steps at the top or run
- Python 3.11 and pip
- Pip packages : psyneulink, graphviz, wget, packaging and requests
- Conda 4.9.1 or above
- Node 4.19.0 or above
- Rosetta ( on Mac)

```
nvm use 16.16
```
All of these are downloaded and installed as part of psyneulinkviewer installation process.

* Now you can run the application
# Testing Models

```
./PsyNeuLinkViewer
```
If all went well with installation, you should see the application running as in screenshot below :
![image](https://github.com/user-attachments/assets/ec84044c-287a-4e39-bdf7-aa27cdc486f9)

### Linux
To test models, download [these models](https://github.com/MetaCell/PsyNeuLinkView/tree/feature/PSYNEU-140/test_models) and import one at a time to test. Each time a Model is open, the previous one will disappear. I recommend you start with the models inside 'working_tests', as those are the ones we know for sure should we working.

* Open your terminal and navigate to the folder containing the archive linux.tar.gz previously downloaded
To import go to File -> Open Models

* Open the archive and then navigate in the app folder with the commands below
# PsyNeuLinkView Package Building

```
tar xvfz linux.tar.gz
cd PsyNeuLinkViewer-linux-x64/
```
To build pip package

* Before to launch the application ensure that you are running the node version required, so
```
cd package
python3 -m pip install build
python3 -m build --sdist
```

```
node --version
```
To test local build

and if this is different from v16.16 then either follow the steps at the top or run
```
pip install dist/psyneulinkviewer-VERSIOn.tar.gz
```

```
nvm use 16.16
```
To upload to distribution server. You will need token shared privately to be able to upload.

* Now you can run the application
```
python3 -m twine upload dist/*
```

```
./PsyNeuLinkViewer
```
To upload to test Pypi server

```
python3 -m twine upload --repository testpypi dist/*
```

# Development Installation

Expand Down
Loading