I moved it.

/todo/index is the only functional app
The other examples are not really designed to do do anything interesting 
yet.


On Sunday, 14 April 2019 02:12:46 UTC-7, 黄祥 wrote:
>
> *test latest commit on docker because seen the Makefile in there*
> docker pull ubuntu
> docker run -it --privileged ubuntu /bin/bash
>
> apt update
> apt install -y git python3-pip
> git clone https://github.com/web2py/web3py
> cd web3py
> pip3 install -r requirements.txt
> # ./web3py-start applications/
> Traceback (most recent call last):
>   File "./web3py-start", line 5, in <module>
>     for filename in os.listdir('site-packages'):
> FileNotFoundError: [Errno 2] No such file or directory: 'site-packages'
>
> commenting this one is work
> *web3py/web3py-start*
> """
> import sys, os
> for filename in os.listdir('site-packages'):
>     sys.path.insert(0, os.path.join('site-packages', filename))
> """
>
> *cant access*
> http://localhost:8000/examples/oops # return 404
>
> http://localhost:8000/examples/form
> *worked*
>
> http://localhost:8000/examples/showme
> form input appears seems have no function on there
>
> best regards,
> stifan
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to