Using hyphen/dash in python repository name and package name

To answer your 1st point let me rephrase my answer to a different question. The biggest source of misunderstanding is that the word “package” is heavily overloaded. There are 4 different names in the game — the name of the repository, the name of the directory being used for development (the one that contains setup.py), … Read more

Pip Install hangs

If you are you using WSL2, indeed it could be related to pip trying to connect to an XServer. If so, clearing the DISPLAY environment variable first before running it may help: export DISPLAY= pip install <packagename> (Or, as a one-liner: DISPLAY= pip install <packagename>)

Can I run a private npm repository without replicating the public repository?

I just set this up for my work. Here’s what I did: Setup empty NPM registry: I followed the instructions from this fork of npmjs.org, which adds much improved documentation. Setup Kappa: I used Kappa, a great npm proxy from Paypal. (I’m guessing they have a very similar use case to most people who want … Read more

how to show all package dependency tree

While we’re waiting for the official tools to have this functionality, here’s the uglyslow vershion: for p in `meteor list | grep ‘^[a-z]’ | awk ‘{ print $1″@”$2 }’`; do echo “$p”; meteor show “$p” | grep -E ‘^ [a-z]’; echo; done This will show the dependencies of all added packages. It parses the output … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)