i followed install guide from here : <https://docs...
# troubleshooting
r
i followed install guide from here : https://docs.meltano.com/guide/installation everythings going well, and i following "create your meltano project" from this site: https://docs.meltano.com/getting-started#create-your-meltano-project but i cant create any. it said this :
r
The error is telling you that a directory
my-first-meltano
already exists in your working directory
meltano-projects
. You can either run
meltano init
specifying a unique file name within the working directory, or
rm -rf my-first-meltano
(double-check you're not going to delete anything important) and then run
meltano init my-first-meltano
again.
r
thres'no file in my directory
meltano-projects
and it's still output the same
i've been using all uniq name that i have but same error
r
Looks like it's hitting that error in the code here. Can you try running Python interactively in your terminal and run
Copy code
import os

os.mkdir("my-first-meltano")
and see what you get?
r
this is what i got
r
Doesn't look like a meltano problem to me then.
Copy code
os.getcwd()
will show you what python considers as the current working directory. Perhaps this is incorrect and your python needs some extra configuration on you system.
r
it showed this
so i have to make directory project inside slimm3208 dir ?
oh i get it now sir, thanks for directing me
it working now
r
Awesome! You'll probably want to figure out why your python isn't taking the active terminal directory as the current working directory though, as I'll imagine this will just cause you more problems in the future.
r
ok sir thanks for your hand