Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
AmpScan
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Joshua Steer
AmpScan
Commits
ee5be02d
Commit
ee5be02d
authored
6 years ago
by
ojs1g14
Browse files
Options
Downloads
Patches
Plain Diff
Update test pip install
parent
4c29c4fd
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+26
-9
26 additions, 9 deletions
README.md
setup.py
+2
-2
2 additions, 2 deletions
setup.py
with
28 additions
and
11 deletions
README.md
+
26
−
9
View file @
ee5be02d
...
@@ -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/
)
.
Install
ation
Install
ing 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
)
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
ee5be02d
...
@@ -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
,)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment