kenperlin / chalktalk

MIT License
2.12k stars 137 forks source link

permissions error #34

Closed stephenlewis1949 closed 6 years ago

stephenlewis1949 commented 6 years ago

Sorry for the simple question, but when I try to clone using git clone git@github.com:kenperlin/chalktalk.git --depth=1 I get a permissions error. Not a frequent user of git, so perhaps a simple fix for this?

thanks

Steve Lewis

KTRosenberg commented 6 years ago

@stephenlewis1949 git clone https://github.com/kenperlin/chalktalk.git --depth=1 works. Please let me know if you still see the permissions error, and I will update the wiki.

stephenlewis1949 commented 6 years ago

Thanks. That seemed to work for the cloning, but the cd and install generated these errors. Thanks for any further help. Steve

Last login: Wed Nov 8 12:27:03 on ttys000

Stephens-MacBook-Air-2:~ steve$ https://github.com/kenperlin/chalktalk.git --depth=1

-bash: https://github.com/kenperlin/chalktalk.git: No such file or directory

Stephens-MacBook-Air-2:~ steve$ git clone https://github.com/kenperlin/chalktalk.git --depth=1

Cloning into 'chalktalk'...

remote: Counting objects: 195, done.

remote: Compressing objects: 100% (190/190), done.

remote: Total 195 (delta 5), reused 51 (delta 2), pack-reused 0

Receiving objects: 100% (195/195), 8.46 MiB | 13.30 MiB/s, done.

Resolving deltas: 100% (5/5), done.

Checking connectivity... done.

Stephens-MacBook-Air-2:~ steve$ cd ./chalktalk/server/

Stephens-MacBook-Air-2:server steve$ npm install

Error: Cannot find module './lib/cookies'

at Function.Module._resolveFilename (module.js:326:15)

at Function.Module._load (module.js:277:25)

at Module.require (module.js:354:17)

at require (internal/module.js:12:17)

at Object.<anonymous>

(/usr/local/lib/node_modules/npm/node_modules/request/index.js:18:29)

at Module._compile (module.js:410:26)

at Object.Module._extensions..js (module.js:417:10)

at Module.load (module.js:344:32)

at Function.Module._load (module.js:301:12)

at Module.require (module.js:354:17)

at require (internal/module.js:12:17)

npm ERR! Darwin 14.5.0

npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install"

npm ERR! node v4.2.6

npm ERR! npm v2.14.12

npm ERR! code MODULE_NOT_FOUND

npm ERR! Cannot find module './lib/cookies'

npm ERR!

npm ERR! If you need help, you may report this error at:

npm ERR! https://github.com/npm/npm/issues

Stephens-MacBook-Air-2:server steve$ cd ./chalktalk/server

-bash: cd: ./chalktalk/server: No such file or directory

Stephens-MacBook-Air-2:server steve$ ls

editor.html main.js npm-debug.log package.json

Stephens-MacBook-Air-2:server steve$ cd ../chalktalk/server

-bash: cd: ../chalktalk/server: No such file or directory

Stephens-MacBook-Air-2:server steve$ cd chalktalk

-bash: cd: chalktalk: No such file or directory

Stephens-MacBook-Air-2:server steve$ cd..

-bash: cd..: command not found

Stephens-MacBook-Air-2:server steve$ ls

editor.html main.js npm-debug.log package.json

Stephens-MacBook-Air-2:server steve$ npm install

Error: Cannot find module './lib/cookies'

at Function.Module._resolveFilename (module.js:326:15)

at Function.Module._load (module.js:277:25)

at Module.require (module.js:354:17)

at require (internal/module.js:12:17)

at Object.<anonymous>

(/usr/local/lib/node_modules/npm/node_modules/request/index.js:18:29)

at Module._compile (module.js:410:26)

at Object.Module._extensions..js (module.js:417:10)

at Module.load (module.js:344:32)

at Function.Module._load (module.js:301:12)

at Module.require (module.js:354:17)

at require (internal/module.js:12:17)

npm ERR! Darwin 14.5.0

npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install"

npm ERR! node v4.2.6

npm ERR! npm v2.14.12

npm ERR! code MODULE_NOT_FOUND

npm ERR! Cannot find module './lib/cookies'

npm ERR!

npm ERR! If you need help, you may report this error at:

npm ERR! https://github.com/npm/npm/issues

Stephens-MacBook-Air-2:server steve$

On Wed, Nov 8, 2017 at 1:01 PM, Karl Toby Rosenberg < notifications@github.com> wrote:

git clone https://github.com/kenperlin/chalktalk.git --depth=1 is the correct command. I will update the wiki.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kenperlin/chalktalk/issues/34#issuecomment-342902391, or mute the thread https://github.com/notifications/unsubscribe-auth/AJA2rXMOwYB9fXjsksesfbHSZJRXoKWpks5s0eyAgaJpZM4QWyS6 .

KTRosenberg commented 6 years ago

Is Nodejs installed? https://nodejs.org/en/ This is all I can find so far related to the error you posted: https://github.com/node-inspector/node-inspector/issues/746

Try searching for the particular Cannot find module './lib/cookies' error in the meantime, as I cannot reproduce the issue.

stephenlewis1949 commented 6 years ago

Thanks. I thought I had it installed, but must have removed it for some reason, or I had an older version? Anyway, it now runs, thanks

Still have to get acquainted with the operation of the program itself. Are there any online interactive working demos or local ones I could install? Did I miss that?

On Wed, Nov 8, 2017 at 1:12 PM, Karl Toby Rosenberg < notifications@github.com> wrote:

Is Nodejs installed? https://nodejs.org/en/

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/kenperlin/chalktalk/issues/34#issuecomment-342905527, or mute the thread https://github.com/notifications/unsubscribe-auth/AJA2rZb9CjhCvcaTHUUeJP-TShnSAJ97ks5s0e77gaJpZM4QWyS6 .

KTRosenberg commented 6 years ago

We haven't created interactive demos yet, but pressing Space within Chalktalk toggles help mode, which displays visual guides that show what gestures and options are available to you. (That can be helpful for beginners.) We are actively thinking about and experimenting with ways to improve the first-time use experience. As for sketch creation, take a look at this wiki page and this starter file, which should help if you want to try playing with making sketches.