Skip to content
Snippets Groups Projects
Commit ee5be02d authored by ojs1g14's avatar ojs1g14
Browse files

Update test pip install

parent 4c29c4fd
No related branches found
No related tags found
No related merge requests found
...@@ -9,8 +9,8 @@ and [SciPy](https://www.scipy.org/) to perform mathematical operations with vizu ...@@ -9,8 +9,8 @@ and [SciPy](https://www.scipy.org/) to perform mathematical operations with vizu
still under development by researchers at the University of Southampton. For full documentation, still under development by researchers at the University of Southampton. For full documentation,
visit the [AmpScan website](https://ampscan.readthedocs.io/en/latest/). visit the [AmpScan website](https://ampscan.readthedocs.io/en/latest/).
Installation Installing with Conda (Recommended)
------------ -----------------------------------
AmpScan has a number of dependencies, we recommend using conda to deal with these. To create a new AmpScan has a number of dependencies, we recommend using conda to deal with these. To create a new
environment to run AmpScan in: environment to run AmpScan in:
...@@ -19,19 +19,36 @@ environment to run AmpScan in: ...@@ -19,19 +19,36 @@ environment to run AmpScan in:
``conda install -c conda-forge vtk=8.1.0`` ``conda install -c conda-forge vtk=8.1.0``
For the most up to date version of AmpScan, clone directly from the gitlab repository into a virtual environment using: Installing with Pip
-------------------
``git clone https://git.soton.ac.uk/js22g12/AmpScan.git`` AmpScan has a number of dependencies, namely; NumPy, SciPy, Matplotlib, PyQt and vtk. Before
installing, ensure you have the latest version of pip using:
Navigate to the `AmpScan/` directory and run a pip install using: ``python -m pip install --upgrade pip``
``pip install -e .`` Then install the dependencies using:
``pip install numpy matplotlib scipy pyqt5 vtk==8.1.0``
You can then install AmpScan from test PyPI using:
``python -m pip install --index-url https://test.pypi.org/simple/ AmpScan``
A pip installation is also available through test PyPI (not latest version) using: TODO: update to pip install (not test PyPI)
``$ pip install --index-url https://test.pypi.org/simple/ AmpScan`` Developer Install
-----------------
For the most up to date version of AmpScan, clone directly from the gitlab repository using:
``git clone https://git.soton.ac.uk/js22g12/AmpScan.git``
Navigate to the `AmpScan/` directory and run a pip install using:
``pip install -e .``
## How to acknowledge How to acknowledge
------------------
Find license [here](../LICENSE) Find license [here](../LICENSE)
...@@ -14,7 +14,7 @@ def readme(): ...@@ -14,7 +14,7 @@ def readme():
setup(name='AmpScan', setup(name='AmpScan',
version='0.4', version='0.7',
description=('Package for analysis of ' description=('Package for analysis of '
'surface scan data of residual limbs'), 'surface scan data of residual limbs'),
long_description=readme(), long_description=readme(),
...@@ -22,7 +22,7 @@ setup(name='AmpScan', ...@@ -22,7 +22,7 @@ setup(name='AmpScan',
author_email='Joshua.Steer@soton.ac.uk', author_email='Joshua.Steer@soton.ac.uk',
license='MIT', license='MIT',
packages=['AmpScan'], packages=['AmpScan'],
install_requires=['numpy', 'matplotlib', 'scipy', 'sphinxcontrib-napoleon'], install_requires=['numpy', 'matplotlib', 'scipy', 'pyqt5', 'vtk==8.1.0'],
package_data={}, package_data={},
include_package_data=True, include_package_data=True,
zip_safe=False,) zip_safe=False,)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment