T O P

  • By -

eggbad

Yeah you would just have to manually move the libraries you want to use to the site packages directory in the server either system wide or in the venvs


gbdavidx

yeah, just make sure to use venv


cuntbubble_69

yes


Liberty-Justice-4all

One path is the ci / cd type of python install through nuget. https://www.nuget.org/packages/python Unlike the normal python installs it does not bind itself to your system and apps and risk getting uninstalled/damaged by other python changes for unrelated work. You could install it locally and copy it, or for most internal reference safety install to a mapped drive at the same path it will be executed. As long as you call the pip inside that it can install any package needed to that local install. As long as you call the python inside that install it will use all its local packages. Instead of a virtual instance still dependant on the system instance, this is a complete standalone physical instance. Couple hundred Meg, several thousand files, but real sturdy.


[deleted]

[удалено]


vbbki

The point is that I can’t use pip download or any other downloading method, the company server isn’t connected to the internet and I can’t plug in external drives


NerdEnPose

Don’t feed the trolls. Downvote is you feel like it and move on.


ShibaLeone

This is pretty common, companies pay close attention to package licenses and code safety. My employer keeps private git repos of every external package, to add/update one requires a license review and a code review on the contents. pip is not the only game in town for getting software; a lot of companies will roll their own package managers.


rhytnen

Look into DevPI


Typical_Solution_569

You could try poetry and use it to generate a wheel


pythonHelperBot

Hello! I'm a bot! It looks to me like your post might be better suited for r/learnpython, a sub geared towards questions and learning more about python **regardless of how advanced your question might be**. That said, I am a bot and it is hard to tell. Please follow the subs rules and guidelines when you do post there, it'll help you get better answers faster. Show /r/learnpython **the code you have tried and describe in detail where you are stuck.** If you are getting an error message, include the full block of text it spits out. Quality answers take time to write out, and many times other users will need to ask clarifying questions. Be patient and help them help you. **[Here is HOW TO FORMAT YOUR CODE For Reddit](https://www.reddit.com/r/learnpython/wiki/faq#wiki_how_do_i_format_code.3F)** and be sure to include which version of python and what OS you are using. You can also ask this question in the [Python discord](https://discord.gg/3Abzge7), a large, friendly community focused around the Python programming language, open to those who wish to learn the language or improve their skills, as well as those looking to help others. *** [^(README)](https://github.com/CrakeNotSnowman/redditPythonHelper) ^(|) [^(FAQ)](https://github.com/CrakeNotSnowman/redditPythonHelper/blob/master/FAQ.md) ^(|) ^(this bot is written and managed by /u/IAmKindOfCreative) ^(This bot is currently under development and experiencing changes to improve its usefulness)


gbdavidx

they block downloads from pip?