-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation instructions on VuePress home page don't work #908
Comments
this is critical issue of Windows OS users. check #886 Pull Request or self edit |
I am getting the same error with vuepress@next v1.0.0-alpha.8 on a MacBook Pro running macOS 10.13.6 after going through steps 1 through 3 on the vuepress home page.
so @mAKEkr, it seems that this is happening on macOS as well, at least, for me. |
hmmm, what do you mean by ‘repo’? I’m new to building stuff with build processes and dependencies and git, etc. If you mean the project folder and the files in it, then the only file in the folder is a README.md file with... # Hello VuePress in it. I literally just did steps 1 2 and 3 on the VuePress homepage and that is the error I get. This install of macOS is also very fresh, as I just erased my SSD and started from scratch a few days ago, so there probably aren't too many things that could get in the way. I'm trying to think of what could be getting in there and mucking things up, but I don't know. |
Ah I don't read carefully, the issue is for global vuepress installation, local installation just works. |
well, the local installation sort of worked for me, but I got a 404 page, rather than the README.md file, so not really, I guess. I think I could make a 'repo' for that one, no? |
Git repository with your issue |
hmmm...need to learn how to make a git repository then...gimmie a bit... |
I can confirm the bug, here is the log with
The issue is on |
hmmm...wouldn’t really know how to do that 😶 |
@rchrdnsh you can use my starter if you want |
argh...just got the same error using your starter @ekoeryanto 😕 my computer just doesn't like VuePress 😔 |
@rchrdnsh you can create an issue on the starter, |
I had endsWith issues as well and the only thing that helped was to uninstall the global npm installed vuepress and to install it again with yarn. |
I just installed |
@ekoeryanto What do you want to express with thumbing down? |
I get this series or warnings when installing vuepress, so I'm wondering if there is any issues with vuepress working because of this series of warnings. Maybe other dependencies are not met properly on my system?
|
@rchrdnsh Do you use any offical plugins? And maybe you need to install them, some offical plugins dont exist in the vuepress@next version. |
I’m not using any official VuePress plugins, no. I actually got a local install to work for a little while the other day, then when trying to add a nav in the config it broke and would not render anything to screen. Gonna try and recreate that issue as well and create an issue of it still persists. |
I'm seeing this today with [email protected] It's a CodeCommit Ubuntu server nodejs:8.11.0 I've seen it with both npm and yarn latest. LoadTheme related:
|
If it helps, installing non-globally and using npx works:
|
Well, it's not cool, the bug is 10 days old, I've installed the version which was released 20h ago - but it's still there :'( |
Same on linux mint 19. # Hello eqweqw
eqw ╰─$ vuepress -V 1 ↵ |
Currently the global installation seems to be broken but it works if installed locally. You can then start it with:
... or add it to your package.json file so that you can easily start it with npm or yarn:
|
This is feasible. thank you :) "scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"d": "bash deploy.sh"
},
"dependencies": {
"vuepress": "^1.0.0-alpha.13"
} |
After some investigation, I found that this issue was caused by introducing monorepo, fixed and release it at |
Very strange, but it is still not working even in
|
@bora89 Try |
Thanks @ulivz ! Now it is working |
Bug report
Version
Steps to reproduce
Follow instructions on home page: https://vuepress.vuejs.org/#as-easy-as-1-2-3
What is expected?
To see a working example.
What is actually happening?
If I install globally (as per the instructions) and try
vuepress dev
I get:If I try to install it locally (without -g) and run I get:
Other relevant information
I had previously installed
vuepress
without the@next
suffix after reading the instructions in the docs (see https://vuepress.vuejs.org/guide/getting-started.html#global-installation) as per my previous issue here #903 (comment)I removed the old (0.14 I think) version before installing the new version globally. When I tried installing locally I used
vuepress@next
as per the instructions on the home page -- easy to miss as they're below the fold and there's a big green button that says "Get Started" which takes you to the stale docs (click "Getting Started" in the sidebar nav after that) that have instructions to installvuepress
and notvuepress@next
.The text was updated successfully, but these errors were encountered: