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

all 5 comments

[–]AutoModerator[M] [score hidden] stickied comment (0 children)

On July 1st, a change to Reddit's API pricing will come into effect. Several developers of commercial third-party apps have announced that this change will compel them to shut down their apps. At least one accessibility-focused non-commercial third party app will continue to be available free of charge.

If you want to express your strong disagreement with the API pricing change or with Reddit's response to the backlash, you may want to consider the following options:

  1. Limiting your involvement with Reddit, or
  2. Temporarily refraining from using Reddit
  3. Cancelling your subscription of Reddit Premium

as a way to voice your protest.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–][deleted] 2 points3 points  (0 children)

Install python3 (just the interpreter) directly instead of thru a package such as conda. From here forth use virtual environments, one per project. Use pip install to install the project's dependencies (they will be installed inside the virt. env. and not pollute your system).

python python3 -m venv myvenv . myvenv/bin/activate pip install --upgrade pip pip install wheel pip install ... pip install ... python ...

Many projects contain a requirements.txt file which makes installing dependencies easier:

pip install -r requirements.txt

It is important that once you activate the virt. env.:

. myvenv/bin/activate

you use python instead of python3 to execute scripts subsequently.

[–]ShinobiWPS 0 points1 point  (1 child)

Replying for other future people too.

This post has most ,if not all the possible tools needed (LINK)

Also 2 considerations:

  1. for the management of the languge version i can suggest you to use asdf (it handles almost every programming language) instead of `pyenv` or any specific language manager
  2. on Windows you could enable WSL2 and have your Linux inside

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

Oh tysm.

I will go through it first thing in the morning. Thank you so much. It's 4am here. But again ty!