-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Support for VSCode extension #141
Comments
So, I believe logic should be following:
Thank you a lot for the explanation. Any special steps to do to remove a package? |
Almost. Before checking if
Removing is |
So,
Checking that env is conda is quite easy: we are checking that parent dir for python interpreter path contains I implemented everything except env lookup. |
Nice! Are you able to activate the environment and check for |
Yes, I am. However, picking the right env is tricky. I am debugging it now, and I hope I release it soon |
Hello!
I have recently published a VSCode extension for automated install of
boto3-stubs
. Currently I supportpip
,pipenv
andpoetry
installers, but I have a plan to addconda
as well.As far as I understand, not all
boto3-stubs
service packages are built forconda
, so it looks like I should filter out only packages that are supported.Could you please guide me how to make sure:
conda
is used in current project. Should I just search forconda
inpip freeze
?conda-forge
source is added toconda
conda install 'boto3-stubs[ec2,s3]'
command work, or I should pass packages separately?Regards, Vlad.
The text was updated successfully, but these errors were encountered: