Kevin Bowen :xfce: · @kevinbowen
128 followers · 869 posts · Server fosstodon.org

If one is going to be futzing around with on their system, I think the best way to inoculate/isolate one's user-space from the system is to install

I used to completely pollute my installations by mucking up installations with installing distribution python packages and end up struggling to get them working together properly.

pyenv is a great prophylactic if one doesn't need the environment.

#python #pyenv #pip #conda

Last updated 1 year ago

Exclusive: Disabled people are ‘set up to fail’ by the DWP in target-driven disability benefits system, whistleblowers reveal
bigissue.com/news/social-justi






#dwp #disabled #whistleblower #SetUpToFail #pip #TheBigIssue

Last updated 1 year ago

AskUbuntu · @askubuntu
229 followers · 1795 posts · Server ubuntu.social

pip install wxPython gets the cores at 95 C

askubuntu.com/q/1484236/612

#compiling #pip #wxpython

Last updated 1 year ago

Seth Michael Larson · @sethmlarson
1027 followers · 833 posts · Server fosstodon.org

So proud of this announcement and excited for the future of and ! 🥳

But we're not stopping there, I'm drafting guidance for other projects to join the program and manage their own vulnerabilities. Stay tuned! 🚀

#python #pip #opensource #cve

Last updated 1 year ago

Felix Palmen 📯 · @zirias
54 followers · 221 posts · Server techhub.social

Python issue solved the "redneck repair" way, installing *everything* to /usr/lib64 (on a 64bit system) instead of *just* the architecture-dependent stuff. Now, python works and finds all its modules... 🙄

After porting lots of extra python tools (cause won't do it for proper packaging with staging), it seems I finally have a working in my userland 🥳

Nevermind all these extra modules install to /usr/lib. Well, it works, I don't care 😂

Doing a full rebuild of all the ports now just to be sure (cause I also changed stuff in my USES). If all is fine, branch will be updated 🙏

#pip #meson #freebsd #linuxulator #linux

Last updated 1 year ago

Stas · @vsv
107 followers · 930 posts · Server masto.ai

poetry всем хорош, но когда нам нужно сменить процессор для определенных библиотек (например pythorch) — начинается головняк.
Конечно, можно опять воспользоваться pip. Например вот так:
pip install torch --index-url download.pytorch.org/whl/cpu
а потом что-то вроде этого:
poetry add $(pip list --format=freeze | grep torch | tr '\n' ' ')
Но выглядит как-то костыльно. Может есть лучший способ?

#pip #poetry

Last updated 1 year ago

AskUbuntu · @askubuntu
228 followers · 1813 posts · Server ubuntu.social
Stark · @Stark9837
129 followers · 2641 posts · Server techhub.social

@berkes

I am creating my first package currently, and I am actually not having any problems with while using virtual environments and requirements.txt I actually have no problem.

It's not that I hate or enjoy it, I am just not having any problems.

@Python

#pip #python

Last updated 1 year ago

Juan Luis · @astrojuanlu
1424 followers · 2996 posts · Server social.juanlu.space

I blogged a thing!

🐍 Best resources on Python packaging 📖 dev.to/astrojuanlu/best-resour on @thepracticaldev

#python #packaging #pip

Last updated 1 year ago

Juan Luis · @astrojuanlu
1410 followers · 2919 posts · Server social.juanlu.space

This feature I contributed to pip has saved us today ❤️ github.com/pypa/pip/pull/10937

If you launch `pip install -vv` or `export PIP_VERBOSE=2` you can see more detailed messages when there is a conflicting dependency. Look for `INFO: Will try a different candidate, due to conflict:` in the logs.

#pip #packaging #python

Last updated 1 year ago

X(Twitter)で見かける誤字ツイート(誤字エックス)を生成するライブラリ
qiita.com/10tat1v3/items/18077

#qiita #python #twitter #pip

Last updated 1 year ago

· @benx
238 followers · 1291 posts · Server kolektiva.social

Headline: Cloudflare being exploited for malicious activity

Article: Actual vulnerability is caused by a lack of moderation of third party Python packages

techradar.com/pro/cloudflare-t

#cloudflare #python #pypi #pip #programming

Last updated 1 year ago

AskUbuntu · @askubuntu
213 followers · 1805 posts · Server ubuntu.social

Importing python packages installed with pipx #2304

askubuntu.com/q/1481763/612

#apt #packagemanagement #python #pip

Last updated 1 year ago

Mo :ferris: :tux: · @mo8it
430 followers · 1508 posts · Server fosstodon.org

@seanmonstar is hiding xD

#pip

Last updated 1 year ago

Martin Owens · @doctormo
1553 followers · 2637 posts · Server fosstodon.org

If I have a python/C++ project using meson and a pyproject.toml file and I want to build a wheel WITH debug symbols. How would I do that?

My current wheels build without the symbols making debugging much more difficult.

Update: I added , '--debug' to the setup array under [tool.meson-python.args]

#python #cpp #pip #meson

Last updated 1 year ago

Archon · @Archon
20 followers · 244 posts · Server kolektiva.social

"Headache"? What a load of dog whistle bollocks.

is a tortuously difficult to get, as anyone who's ever actually needed to do so will tell you. in the UK are backlogged for months on end, because the make so many wrong refusals of a benefit they should have awarded.

coventrytelegraph.net/news/uk-

#pip #benefit #tribunals #DWP

Last updated 1 year ago

Husko Hyena · @Husko_Hyena
36 followers · 50 posts · Server transfur.social

New card! This time it's Pip from Paladins.

Be careful wishing to become a cute fuzzy fenn from a game... you might just be shrinking.

Character is from Paladins.
Art is by me.

#media_multiverse #transformation #pip #paladins #fennec #shrinking #naked #erection

Last updated 1 year ago

@gotofritz 100% with you. Not sure if I managed to verbalize it the way it was intended with regards to dependency tracking. Last time I checked (my view might be outdated here) freeze only tracked first order depdencies (meaning, deps your project explictly depends on) as opposed to what or are able to accomplish with their lockfiles, effectively tracking your entire dependency tree (though you can still do that using pip-tool.)

#pip #poetry #pipenv

Last updated 1 year ago

stark@techhub.social:~$ █ · @Stark9837
422 followers · 2234 posts · Server techhub.social

@PlasticMemmories

I also recently used it in my pwn project. I wrote the @3dprinting for .

The bot gets the notifications from the API and stores it in a local database. The user can implement these functions and use my decorators. The functions are then called for every notification.

So you don't need to loop. You just say what you want the bot to do with every single follow, mention, etc. So it is just so simple for less technical users. I could also make opinionated decisions and design the bot how I want it, and users don't need to worry about how the bot actually works.

This also allowed me to turn the bot into a package and allows the user to update it with without needing to change their code as only the backend changes.

#Bot #Mastodon #pip #python

Last updated 1 year ago