PHP 7.0.22-2+ubuntu16.04.1+deb.sury.org+4 (cli) (built: Aug 4 2017 13:04:09) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.0.22-2+ubuntu16.04.1+deb.sury.org+4, Copyright (c) 1999-2017, by Zend Technologies
Server version: Apache/2.4.18 (Ubuntu)
Server built: 2017-07-27T14:34:01
+-------------------------+
| version() |
+-------------------------+
| 5.7.19-0ubuntu0.16.04.1 |
+-------------------------+
Also i tried:
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition magento2Package fabpot/php-cs-fixer is abandoned, you should avoid using it. Use friendsofphp/php-cs-fixer instead.
Writing lock file
Generating autoload files
[SUCCESS]: Magento installation complete.



for me it looks similar to this
First of all, don't use localhost as the top level domain. Try to use another domain like mage217.loc, mysite.loc, etc.
Second, the layout broken, we need to run static deploy command.
Third, check your web server mode rewrite. We can add index.php to the url, for example: localhost/magento2-2-0-2-1/index.php/admin_
@MaximKitsenko did the suggestions resolve the issue?
I have exactly the same problem.
I can't not find the problem.
I have debian with apache2
@serblama did you try the suggestions listed above?
yes, but the second option, I don't understand what do you mean with deploy command
Read about it here.
CLI command: magento setup:static-content:deploy
Are you running in default mode?
CLI command to check: magento deploy:mode:show
The solution for this is to add this in the default apache2 server config (/etc/apache2/sites-available/000-default.conf).
<Directory "/var/www/html">
AllowOverride All
</Directory>
@Stike999 thank you for suggestion