All Questions
2 questions
-1
votes
1
answer
976
views
Change Poetry Python version
Context
I want Poetry to use Python 3.12.x
Poetry is installed globally, and I've set Pyenv to default to 3.12 globally on my machine
I'm using VSCode
In the terminal in my project, I've done poetry ...
0
votes
1
answer
797
views
No such file or directory error on VSCode while running a python script with poetry and pyenv
I'm having a problem when accessing a file path while using python in VSCode with pyenv and poetry on Ubuntu 20.04.
I run this:
import pandas as pd
data = pd.read_csv("../docs/lists.csv")
...