Setting Up From Scratch — Anaconda + PyCharm + PyTorch (GPU) + Virtual Environment (Complete Steps)
1. Installing Anaconda
Go to the Enaconda download page and click Download.
Download the installer and proceed with the installation.
Set the installation path to all English characters.
Uncheck the second option.
Next, configure the environment variables.
Based on your custom installation path, add the following three paths:
path/to/anaconda
...
Posted on Sat, 05 Sep 2026 16:13:55 +0000 by tili
Managing Isolated Python CLI Tools with pipx and Project Dependencies with Poetry
Isolated Execution of Python Command-Line Applications Using pipx
pipx enables installation and execution of Python-based terminal utilities in dedicated environments, exposing their entry points system-wide while avoiding dependency conflicts. It is suited for tools published on PyPI that provide console scripts.
Core capabilities:
Installs e ...
Posted on Sun, 23 Aug 2026 16:06:29 +0000 by bungychicago
Django URL Routing, Reverse Resolution, and Virtual Environments
Table Relationships in Django
Use Cases for One-to-One Relationships
In QQ, basic user info is linked to detailed info—this saves query time.
One-to-one tables can be merged into one or split into two separate tables.
Foreign keys should be placed on the many side of a one-to-many relationship. Create base tables first before establishing forei ...
Posted on Tue, 04 Aug 2026 16:52:05 +0000 by reub77
Setting Up an Isolated Python Environment and Building a Basic Django Project
Isolated Python Runtime
When developing in Python, installing packages via pip pulls them into a global location like /usr/local/lib/pythonX.Y/site-packages. This becomes problematic when multiple projects require conflicting versions of the same package. An isolated environment ensures each project operates independently.
All such environments ...
Posted on Fri, 24 Jul 2026 16:25:24 +0000 by mpower