IOS

How to install and uninstall packages in Xcode

Right here: add through pasting a github URL. All done.

I love it when there’s an official way of managing packages. The evolution of even package management systems are just too much.

And how to uninstall: from the +/- button here. Not as friendly. Why couldn’t they have added a “remove package” option on the leftnav?

Standard
Python

Poetry equivalent of `python setup.py develop`

To use the package you’re working on directly in the project itself. Go to the directory where your package is being developed, where the pyproject.toml file resides:

poetry install
poetry shell

I fought days with it and it ended up being that simple. *Facepalm*.

If necessary, remove the previously created venv first.

To use it in a different project though, you’d probably need something like this.

Standard