GithubHelp home page GithubHelp logo

Comments (2)

lorencarvalho avatar lorencarvalho commented on September 17, 2024

hi @rhytnen

pyz files created with shiv modify the sys.path upon bootstrapping and place the packed dependencies before any other instances of site-packages or dist-packages. The precedence order should be as follows:

  1. $CWD & stdlib, since we don't package these, they are searched first during import. This is python's default behavior
  2. the dependencies included in your pyz
  3. any site packages on your local machine (so anything that may have been added via sudo pip install or pip install --user)
  4. any dist-packages, so anything that the OS maintainer includes by default

So when you say you have a version of pyyaml installed into your "core python" I presume you mean via pip install into the global site-packages, this should be evaluated after the pyyaml that's included in your pyz. The only scenario where it would be picked up first would be if you are running the pyz in the same $CWD as a pyyaml (since Python's default import order checks in $CWD first).

What version of shiv did you create the pyz with? Another helpful piece of debugging info would be to run SHIV_INTERPRETER=1 ./path/to/your/pyz and then copy/paste the output of import sys; print(sys.path)

thanks!

from shiv.

jhermann avatar jhermann commented on September 17, 2024

BTW, it would be a nice addition security-wise if there were a flag to remove the CWD from sys.path on bootstrap, to prevent code injection attacks.

from shiv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.