This is my first time trying to use pulumi. Trying...
# python
a
This is my first time trying to use pulumi. Trying to use it with python. The command
pulumi new oci-python
errors out:
Copy code
Installing dependencies...
  × Failed to build `grpcio==1.51.3`
  ...
      ModuleNotFoundError: No module named 'pkg_resources'
Is this a known issue? How can I get past this error? Slack Conversation
Pulumi v3.259.0 uv 0.12.5 (x86_64-unknown-linux-gnu) Python 3.14.6
f
hm it looks like
oci-python
has some quite old
requirements.txt
try replacing your
requirements.txt
with
Copy code
pulumi>=3.259.0,<4.0.0
pulumi-oci>=4.20.0,<5.0.0
a
This seems to have gone through.
pulumi install
completed successfully 🙂
🎉 1
do I need to install anything extra to get code completion to work?
f
that would depend on your IDE/editor - if you tell me which you're using I can try to assist!