SalesforceAIResearch / uni2ts

[ICML2024] Unified Training of Universal Time Series Forecasting Transformers
Apache License 2.0
616 stars 50 forks source link

Missing a default .env file? #1

Closed liu-jc closed 3 months ago

liu-jc commented 3 months ago

I think we may need to provide a default empty .env file? Otherwise, if we run from uni2ts.eval_util.data import get_gluonts_test_dataset in the example, we will face the problem about "cannot find the .env file". To increase the usability. image

abdulmeral commented 3 months ago

hello, i couldnt build from source also.. image

liu-jc commented 3 months ago

hello, i couldnt build from source also.. image

Hi @abdulmeral, Could you provide all the command lines you used for building the environment?

Reyosss commented 3 months ago

hello, i couldnt build from source also.. image

Hi @abdulmeral,i'm facing the same problem, did you solved this problem?

gorold commented 3 months ago

Hi @abdulmeral, @Reyosss, could you provide more details for us to replicate the error? e.g. what is your set up, what commands did you enter, etc.

Reyosss commented 3 months ago

Hi @abdulmeral, @Reyosss, could you provide more details for us to replicate the error? e.g. what is your set up, what commands did you enter, etc.

截图 after creating virtual environment in win10, i can not build from source, it's saying "'.[notebook]' is not a valid editable requirement", but i couldn't find a requirement file in this project, how can i solve this problem, thx!!!

gorold commented 3 months ago

@Reyosss you need to call pip install -e '.[notebook]' in the uni2ts folder

Reyosss commented 3 months ago

@gorold image still the same error

gorold commented 3 months ago

It might be the quotation marks on windows? could you try without quotation marks or with double quotation marks?

Reyosss commented 3 months ago

It might be the quotation marks on windows? could you try without quotation marks or with double quotation marks?

nice, i call pip install -e .[notebook] in win10,dependency now can be downloaded, thx!!!

gorold commented 3 months ago

I've updated the installation instructions to specify the creation of a .env file -- this should solve the issue.

abdulmeral commented 3 months ago

thank you guys, it worked for me too, you are great.