Hi,

You can do it using download caches for pip. How about this way?
https://www.nyayapati.com/srao/2014/06/how-to-pip-install-python-packages-offline/

I found many articles with "pip install offline" keywords.

Thanks,

2018-03-20 3:19 GMT+09:00 Hanz Husseiner <hanzhansel...@gmail.com>:
> Hello:
>    did you manage to install sphinx on your no internet machine?
>
> I am running through the same issue. we are trying to install sphinx on our
> dev server. managed to install python, pip and both working fine but was
> unable to install sphinx.. Thank you for your help.
>
>
> On Friday, September 28, 2012 at 9:09:30 AM UTC-4, Tawez wrote:
>>
>> On Tuesday, September 25, 2012 3:25:17 PM UTC+2, Alexander Gray II wrote:
>>>
>>> Hi,
>>> We have machines that do not have internet access and we would like to
>>> install Sphinx on them.
>>> I downloaded the egg and used the easy-install utility to install it.  It
>>> fails when it tries to download the dependencies from the internet.
>>
>>
>>> Is there an easy way to install this on a machine that does not have
>>> internet access?
>>> Or is there a list of all the dependencies that Sphinx has?
>>> Thanks!
>>
>>
>> Hi,
>>
>> Take a look at easy_install documentation.
>>
>> http://packages.python.org/distribute/easy_install.html#installing-on-un-networked-machines
>>
>> Download all the dependencies on networked machine:
>>
>> easy_install -zmaxd /where/store/eggs Sphinx
>>
>>
>> Then copy all the eggs to un-networked machine and run:
>>
>> easy_install -H None -f /where/are/eggs Sphinx
>>
>>
>> HINT: Copy eggs to folder on un-networked machine, go to this folder and
>> run:
>>
>> easy_install -H None -f . Sphinx
>>
>>
>> If You need list of dependencies, at the moment of writing it is:
>> - sphinx
>> - docutils
>> - jinja2
>> - pygments
>>
>>
>> --
>> regards
>> Tawez
>>
> --
> You received this message because you are subscribed to the Google Groups
> "sphinx-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to sphinx-users+unsubscr...@googlegroups.com.
> To post to this group, send email to sphinx-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/sphinx-users.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to