Installation path and UAC problems on Windows #4292
Replies: 1 comment 2 replies
-
As an alternative, why don't you use a container such as Docker or Podman. Note: Since I need to use NVIDIA GPUs, I stick to Docker.
In the myPixiStuff dir you will see a To install pixi in the dockerfile, use I hope this is helpful to you. Containerizing reduces the risks of experimentation and provides a better controlled environment. Not perfect, but a lot better. It does not help too much with disk storage limitations. I tend to be biased towards container solutions rather than VMs. If on Windows, Docker is run as a minimalist VM with a few limitations. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm a new user from conda. I found that the pathes used by pixi seem not following conventions.
When I install pixi, the default installation path is given as
%LOCALAPPDATA%/pixi
(sounds like install only for me) and no option to install pixi for all users. But in the next step, UAC approvement is still required.Besides, for users who don't have enough space on system volume
C:
, when choosing "install for all users", the default installation path of conda will beC:\ProgramData\miniconda
, then I can easily change its volume letter,D:
for example. After that, both conda program files and future package cache will all be inD:
. But for pixi, I need to create an extra cache folder onD:
, and createC:\ProgramData\pixi\config.toml
as instruction to addPIXI_CACHE_DIR
configuration.C:\ProgramData\pixi\
, as where the configuration file is? And the same for cache folder toC:\ProgramData\rattler\
. Then I can easily change them toD:
.Update: I just found that
PIXI_CACHE_DIR
need to be set as environment variable not in configuration file.4. Why pixi uses separated environment variables and files for configuration (cannot be configured in just one place)?
Beta Was this translation helpful? Give feedback.
All reactions