We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for creating this handy plugin!
After setting a Conda environment prefix as per the docs here and running hatch env create, I am seeing an error that looks like
hatch env create
EnvironmentLocationNotFound: Not a conda environment: /path/to/cwd/project_default_3.8
Digging into the implementation, it looks like this is because conda activate isn't using the prefix:
conda activate
hatch-conda/hatch_conda/plugin.py
Line 246 in 5cdeccc
The text was updated successfully, but these errors were encountered:
Yes this should probably be wrapped in a prefix check:
if self.config_prefix is not None: cmdl = f"{self.config_command} activate {self.config_prefix}" else: cmdl = f"{self.config_command} activate {self.conda_env_name}"
You are welcome to make the PR.
Sorry, something went wrong.
No branches or pull requests
Thanks for creating this handy plugin!
After setting a Conda environment prefix as per the docs here and running
hatch env create
, I am seeing an error that looks likeDigging into the implementation, it looks like this is because
conda activate
isn't using the prefix:hatch-conda/hatch_conda/plugin.py
Line 246 in 5cdeccc
The text was updated successfully, but these errors were encountered: