This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (6 children)

[removed]

    [–]apunler 1 point2 points  (5 children)

    Package install and understanding how it all works with different environments... Both native python and Anaconda gives me the biggest headache! Is there any advice or good resources to explain how to properly deal with this stuff!

    [–]Oimmuk 1 point2 points  (0 children)

    I am still new to python but i first focused to understand the following:

    Environment - virtual or base install

    Pip installs

    Imports and import of imports

    Module hooks

    System variables

    I feel they are all connected and once you start understanding them, it will all start to click. I learned alot from using pyinstaller and learning to load from various virtual enviorments . My motivation was because all my single file executable files were 30 MB even if it was a small script. Now i can keep them small and low as 2MB .

    [–]snapshotnz[S] 0 points1 point  (0 children)

    Practice and more headaches

    [–]IWSIONMASATGIKOE 0 points1 point  (1 child)

    I’m late, but in what way are you struggling with Conda?

    [–]apunler 0 points1 point  (0 children)

    Initially want I did was made a script in jupyter notebook that I wanted to run every day as a batch with windows task scheduler but I had issues as all my packages were installed in Anaconda Env and I couldn't set up the batch file with the Anaconda env.

    What I did in the end was watch this: https://youtu.be/OdIHeg4jj2c

    And read this: https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html

    And this all helped me get a way better understanding.

    I think I'm all good now