Skip to content

Commit

Permalink
instruction changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CHUN-HAO TO committed Mar 10, 2022
1 parent 544c6c8 commit 191e1ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ Stable release
To install linna, run this command in your terminal:

.. code-block:: console
$ pip install --no-deps linna
$ pip install linna
This is the preferred method to install linna, as it will always install the most recent stable release.
The two steps installation is to avoid the problem that pypi's package cannot depend on non-pypi packages.

If you don't have `pip`_ installed, this `Python installation guide`_ can guide
you through the process.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
with open('HISTORY.rst') as history_file:
history = history_file.read()

requirements = ["numpy", "torch>=1.10.1", "emcee>=3.0.2", "h5py", "pydoe2", "scikit-learn", "torch-lr-finder", "matplotlib", "zeus-mcmc", "numdifftools", "sample_generator"]
requirements = ["numpy", "torch>=1.10.1", "emcee>=3.0.2", "h5py", "pydoe2", "scikit-learn", "torch-lr-finder", "matplotlib", "zeus-mcmc", "numdifftools", "sample_generator @ git+https://github.com/tmcclintock/Training_Sample_Generator.git#egg=sample_generator"]

test_requirements = ['pytest>=3', ]

Expand Down Expand Up @@ -40,6 +40,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/chto/linna',
version='0.0.2',
version='0.0.3',
zip_safe=False,
)

0 comments on commit 191e1ce

Please sign in to comment.