forked from mila-iqia/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,21 +8,21 @@ directly from GitHub. | |
.. code-block:: bash | ||
$ pip install git+git://github.com/mila-udem/blocks.git \ | ||
-r https://raw.githubusercontent.com/mila-udem/blocks/master/req.txt | ||
-r https://raw.githubusercontent.com/mila-udem/blocks/master/requirements.txt | ||
This will give you the cutting-edge development version. The latest stable | ||
release is in the ``stable`` branch and can be installed as follows. | ||
|
||
.. code-block:: bash | ||
$ pip install git+git://github.com/mila-udem/blocks.git@stable \ | ||
-r https://raw.githubusercontent.com/mila-udem/blocks/stable/req.txt | ||
-r https://raw.githubusercontent.com/mila-udem/blocks/stable/requirements.txt | ||
.. note:: | ||
|
||
Blocks relies on several packages, such as Theano_ and picklable_itertools_, | ||
to be installed directly from GitHub. The only way of doing so reliably is | ||
through a ``req.txt`` file, which is why this installation command | ||
through a ``requirements.txt`` file, which is why this installation command | ||
might look slightly different from what you're used to. | ||
|
||
Installing requirements from GitHub requires pip 1.5 or higher; you can | ||
|
@@ -85,7 +85,7 @@ with your own GitHub user name: | |
.. code-block:: bash | ||
$ pip install -e [email protected]:USER/blocks.git#egg=blocks[test,docs] --src=$HOME \ | ||
-r https://raw.githubusercontent.com/mila-udem/blocks/master/req.txt | ||
-r https://raw.githubusercontent.com/mila-udem/blocks/master/requirements.txt | ||
As with the usual installation, you can use ``--user`` or ``--no-deps`` if you | ||
need to. You can now make changes in the ``blocks`` directory created by pip, | ||
|
@@ -96,7 +96,7 @@ command from the folder you cloned Blocks to: | |
|
||
.. code-block:: bash | ||
$ pip install -e file:.#egg=blocks[test,docs] -r req.txt | ||
$ pip install -e file:.#egg=blocks[test,docs] -r requirements.txt | ||
.. _fork Blocks on GitHub: https://github.com/mila-udem/blocks/fork | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
picklable-itertools==0.1.1 | ||
progressbar2==2.7.3 | ||
pyyaml==3.11 | ||
six==1.9.0 | ||
toolz==0.7.2 | ||
|
||
--allow-external theano | ||
--allow-unverified theano | ||
git+https://github.com/Theano/Theano.git#egg=theano |
File renamed without changes.